const crypto/sha1.chunk

11 uses

	crypto/sha1 (current package)
		sha1.go#L31: 	chunk = 64
		sha1.go#L42: 	x   [chunk]byte
		sha1.go#L49: 	marshaledSize = len(magic) + 5*4 + chunk + 8
		sha1.go#L84: 	d.nx = int(d.len % chunk)
		sha1.go#L133: 		if d.nx == chunk {
		sha1.go#L139: 	if len(p) >= chunk {
		sha1.go#L140: 		n := len(p) &^ (chunk - 1)
		sha1.go#L218: 	for i := byte(0); i < chunk; i++ {
		sha1.go#L244: 	for i := byte(0); i < chunk; i++ {
		sha1block.go#L24: 	for len(p) >= chunk {
		sha1block.go#L79: 		p = p[chunk:]